home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20020314-20021006 / 000312_fdc@columbia.edu_Wed Aug 21 12:41:53 EDT 2002.msg < prev    next >
Text File  |  2020-01-01  |  3KB  |  110 lines

  1. Article: 13642 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc,comp.unix.solaris
  5. Subject: Re: Problem switching from (ancient) shelltool to CDE's dttool (sol 9!)
  6. Date: 21 Aug 2002 12:41:32 -0400
  7. Organization: Columbia University
  8. Lines: 93
  9. Message-ID: <ak0frs$kvr$1@watsol.cc.columbia.edu>
  10. References: <ajts6m$v0$1@panix1.panix.com> <ajtsvn$gj1$1@watsol.cc.columbia.edu> <ak0e9s$jo0$1@reader2.panix.com>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1029948093 18319 128.59.39.139 (21 Aug 2002 16:41:33 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 21 Aug 2002 16:41:33 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13642 comp.unix.solaris:405195
  16.  
  17. In article <ak0e9s$jo0$1@reader2.panix.com>,
  18. David Combs <dkcombs@panix.com> wrote:
  19. : ...
  20. : You're saying that if I can get 8bit ascii
  21. : being communicated, I can see the french
  22. : stuff, and will see an e-accented-acute instead
  23. : of the "i" I now get for it?
  24. Yes.  Read Chapter 16 of the manual.
  25.  
  26. : And the termcap/terminfo -- I guess that
  27. : would be on the isp's machine, not mine?
  28. Correct.
  29.  
  30. : If you had your druthers, what kind of
  31. : ..term would *you* use: dtterm vs xterm?
  32. People on the Sun newsgroup can answer this better
  33. than I can, but xterm is pretty standard and close
  34. to vt100 (vt102 actually).  So if you use xterm and 
  35. then tell the host that your terminal type is
  36. "xterm" or "vt102" or "vt100" (try them in that
  37. order) and you are using an up-to-date copy of
  38. Kermit (8.0.201), everything should work fine.
  39.  
  40. In case a phrase such as "tell the host your
  41. terminal type" means nothing to you, then try
  42. giving a command like the following at the host's
  43. shell prompt:
  44.  
  45.   export TERM=xterm
  46.  
  47. or:
  48.  
  49.   TERM=xterm
  50.   export TERM
  51.  
  52. or:
  53.  
  54.   setenv TERM xterm
  55.  
  56. or:
  57.  
  58.   tset xterm
  59.  
  60. Which form to use depends on the host and your shell.
  61.  
  62. : What do you suppose the problem is with the
  63. : control-L not having the otherwise-universal
  64. : effect of re-displaying the screen?
  65. What happens when you send Control-L to the host
  66. depends on the application that gets the Ctrl-L.
  67. Assuming you have terminal-type agreement between
  68. emulator and host, it should either clear the screen
  69. (e.g. in bash), redisplay the screen (e.g. in
  70. EMACS), act line a linefeed, etc.
  71.  
  72. : Oh, and one more thing -- what chapters or page-ranges
  73. : would you have me work on (in your c-kermit book)?
  74. For serial ports, modems, etc, start by reading
  75. Appendix II: A Condensed Guide to Serial
  76. Communications.
  77.  
  78. : For someone like me who seems to know nothing,
  79. : any particular order in which to read the
  80. : chapters/sections or page-ranges you suggest?
  81. Once you understand Appendix II you should be able
  82. to read the chapters in order.  Obviously you can
  83. skip the chapters that don't apply to you -- for
  84. example if you only make serial connections, you
  85. don't need to know about networking.
  86.  
  87. : And FINALLY -- finally -- here's what I'm
  88. : running now (sort of ancient; maybe not
  89. : really):
  90. :
  91. :  C-Kermit 6.0.192, 6 Sep 96
  92. :
  93. Time marches on.  The current version is 8.0:
  94.  
  95.   http://www.columbia.edu/kermit/ckermit.html
  96.  
  97. If you visit the Kermit home page occasionally:
  98.  
  99.   http://www.columbia.edu/kermit/
  100.  
  101. you can see what's new, what's current, etc.
  102.  
  103. - Frank
  104.